You are here: Symbol Reference > Dew Namespace > Dew.Stats Namespace > Dew.Stats.Units Namespace > Classes > Statistics Class > Statistics Methods > FullFactDesign Method > Statistics.FullFactDesign Method ([In] TVec, [In] TMtx)
Dew Stats for .NET
ContentsIndexHome
PreviousUpNext
Statistics.FullFactDesign Method ([In] TVec, [In] TMtx)

Performs Mixed-Level Full Factorial Design.

Syntax
C#
Visual Basic
public static void FullFactDesign([In] TVec UniqueLevels, [In] TMtx aResult);

The UniqueLevels vector stores the number of unique settings for each column. UniqueLevels values must be integers, greater than 1. The results (factors) are stored in Result matrix. Size and Complex properties of Result matrix are adjusted automatically.

using Dew.Math; using Dew.Stat.Units; namespace Dew.Examples { private void Example() { Vector tmpVec = new Vector(0); Matrix m = new Matrix(0,0); tmpVec.SetIt(false, new double[] {2,3,2}); Statistics.FullFactDesign(tmpVec,m); } }
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!